const runtime.unwindSilentErrors

15 uses

	runtime (current package)
		mprof.go#L1177: 	u.initAt(pc, sp, 0, gp, unwindSilentErrors)
		proc.go#L4957: 		u.initAt(mp.curg.syscallpc, mp.curg.syscallsp, 0, mp.curg, unwindSilentErrors)
		proc.go#L4961: 		u.initAt(mp.libcallpc, mp.libcallsp, 0, mp.libcallg.ptr(), unwindSilentErrors)
		proc.go#L4965: 		u.initAt(mp.vdsoPC, mp.vdsoSP, 0, gp, unwindSilentErrors|unwindJumpStack)
		proc.go#L4967: 		u.initAt(pc, sp, lr, gp, unwindSilentErrors|unwindTrap|unwindJumpStack)
		traceback.go#L55: 	unwindSilentErrors
		traceback.go#L204: 		if flags&unwindSilentErrors == 0 {
		traceback.go#L208: 		if flags&(unwindPrintErrors|unwindSilentErrors) == 0 {
		traceback.go#L339: 	} else if flag&abi.FuncFlagSPWrite != 0 && (!innermost || u.flags&(unwindPrintErrors|unwindSilentErrors) != 0) {
		traceback.go#L366: 		if u.flags&unwindSilentErrors == 0 && !innermost {
		traceback.go#L461: 		fail := u.flags&(unwindPrintErrors|unwindSilentErrors) == 0
		traceback.go#L462: 		doPrint := u.flags&unwindSilentErrors == 0
		traceback.go#L568: 	if u.flags&(unwindPrintErrors|unwindSilentErrors) == 0 && u.frame.sp != gp.stktopsp {
		traceback.go#L1109: 		u.initAt(pc, sp, 0, gp, unwindSilentErrors)
		traceback.go#L1117: 	u.init(gp, unwindSilentErrors)